home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / grphhelp.dxr / 00003.ls < prev    next >
Encoding:
Text File  |  2000-01-14  |  333 b   |  18 lines

  1. on exitFrame
  2.   global gGraphHelp
  3.   doRollover(gGraphHelp)
  4.   go(the frame)
  5. end
  6.  
  7. on keyDown
  8.   global gGraphHelp
  9.   if the machineType = 256 then
  10.     theModifier = the controlDown
  11.   else
  12.     theModifier = the commandDown
  13.   end if
  14.   if theModifier and (the keyPressed = "w") then
  15.     simulateClickOn(getCloseBox(gGraphHelp))
  16.   end if
  17. end
  18.